印刷机 CT 细化 (含传板) | 泛用机 CT 移除损耗
| 场景 | 高速机 CT | 泛用机 CT | 瓶颈 | UPH (理论) |
|---|---|---|---|---|
|
{{ index + 1 }}. {{ item.name }}
|
{{ item.hsCT.toFixed(2) }}s | {{ item.mfCT.toFixed(2) }}s | {{ item.bottleneckVal.toFixed(2) }}s ({{ item.bottleneckSource }}) | {{ item.uph }} |
|
高速机计算过程 ({{ item.type }})
公式:
总点数 × 速度 / (机器数 × 2) + 传板
总点数 × 速度 / 机器数 + 0(无传板)
{{ item.hsFormulaStr }}
= {{ item.hsCT.toFixed(4) }}s
机器数: {{ item.hsMachineCount }} (CM分流系数: {{ item.type === 'CM' ? `${item.hsMachineCount}*2` : item.hsMachineCount}})
泛用机计算过程
公式: 总点数 × 速度 / 机器数 + 传板
{{ item.mfFormulaStr }}
= {{ item.mfCT.toFixed(4) }}s
机器数: {{ item.mfMachineCount }}
|
||||